home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Embed / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-09-17  |  928 b   |  42 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Menus.fr
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWRESFIL_K
  11. #include "FWResFil.k"
  12. #endif
  13.  
  14. #ifndef DEFINES_K
  15. #include "Defines.k"
  16. #endif
  17.  
  18. #ifndef FWMENUS_FR
  19. #include "FWMenus.fr"
  20. #endif
  21.  
  22. //----------------------------------------------------------------------------
  23. //    Menus
  24. //----------------------------------------------------------------------------
  25.  
  26. resource FW_RMenuBar(kMenuBar)
  27. {
  28.     "About ODFEmbed...",
  29.  
  30.     {
  31.         FW_RPullDownMenu
  32.         (
  33.             "Embed"
  34.             {
  35.                 FW_RTextItem(cOneFacet, FW_kNoKeyEquivalent, "One Facet"),
  36.                 FW_RTextItem(cFourFacets, FW_kNoKeyEquivalent, "Four Facets")
  37.                 FW_RTextItem(cRotateFacets, 'T', "Rotate Facets")
  38.             }
  39.         )
  40.     }
  41. };
  42.